home *** CD-ROM | disk | FTP | other *** search
- *** yuvtoppm.c.orig Mon Oct 04 10:13:06 1993
- --- yuvtoppm.c Wed Jun 15 23:48:06 1994
- ***************
- *** 23,29 ****
- #include "ppm.h"
-
- /* x must be signed for the following to work correctly */
- ! #define limit(x) (((x>0xffffff)?0xff0000:((x<=0xffff)?0:x&0xff0000))>>16)
-
- int
- main(argc, argv)
- --- 23,29 ----
- #include "ppm.h"
-
- /* x must be signed for the following to work correctly */
- ! #define limit(x) (((x>(long)0xffffff)?(long)0xff0000:((x<=(long)0xffff)?0:x&(long)0xff0000))>>16)
-
- int
- main(argc, argv)
-